home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / thrust_2.swf / scripts / frame_21 / PlaceObject2_88_532 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Text File  |  2012-01-07  |  283b  |  14 lines

  1. onClipEvent(enterFrame){
  2.    if(this.hitTest(_root.ship))
  3.    {
  4.       _root.ship.momentumx = 0;
  5.       _root.ship.momentumy = 0;
  6.       _root.ship.gotoAndStop("Explode");
  7.       this.bx = 0;
  8.       this.by = 0;
  9.       this._x = 1000;
  10.    }
  11.    this._x -= bx;
  12.    this._y -= by;
  13. }
  14.